home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / blankery / blanker / source / blankers / fade / defaults.c < prev    next >
C/C++ Source or Header  |  1993-07-27  |  353b  |  19 lines

  1. #include <exec/types.h>
  2. #include <exec/ports.h>
  3.  
  4. #include "/defs.h"
  5. #include "/utility.h"
  6.  
  7. struct fPrefObject { LONG Delay; };
  8.  
  9. VOID defaults( struct bMessage *Msg )
  10. {
  11.     static struct fPrefObject fPO = { 15L };
  12.  
  13.     Msg->bm_Mod = getTopScreenMode();
  14.     Msg->bm_Dep = getTopScreenDepth();
  15.  
  16.     Msg->bm_Info = "Fade Module";
  17.     Msg->bm_Data = ( UBYTE * )( &fPO );
  18. }
  19.